GET   https://api.d-tools.com/SI/Subscribe/Projects?clients[0]={clients[0]}&clients[1]={clients[1]}&progresses[0]={progresses[0]}&progresses[1]={progresses[1]}&includeImported={includeImported}&includeArchived={includeArchived}&searchText={searchText}&includeDeleted={includeDeleted}&pageNumber={pageNumber}&pageSize={pageSize}&projectNumber={projectNumber}

Get projects published by a SI user.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clients

Clients to filter projects (Optional)

Collection of string

None.

progresses

Progresses to filter projects (Optional)

Collection of string

None.

includeImported

Boolean. Include already imported projects. Optional with default value false which means by default you will only see projects which are not imported.

boolean

Default value is False

includeArchived

Boolean. Include archived projects. Optional with default value false which means by default you will only see projects which are not archived.

boolean

Default value is False

searchText

The search text.

string

None.

includeDeleted

Boolean. Include project deleted in SI. Optional with default value false which means by default you will only see active projects which are not deleted.

boolean

Default value is False

pageNumber

The page number.

integer

Default value is 1

pageSize

The page size.

integer

Default value is 50

projectNumber

The project number.

string

None.

Body Parameters

None.

Response Information

Resource Description

ProjectsResult
NameDescriptionTypeAdditional information
Projects

Projects array

Collection of ProjectInfo

None.

TotalCount

Total count of projects

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Projects": [
    {
      "Id": "sample string 1",
      "IntegrationProjectId": "sample string 2",
      "ClientId": "sample string 3",
      "Client": "sample string 4",
      "ClientNumber": "sample string 5",
      "Name": "sample string 6",
      "Number": "sample string 7",
      "Progress": "sample string 8",
      "Approved": true,
      "CONumber": 1,
      "CurrencyCode": "sample string 10",
      "Price": 11.0,
      "ImportedOn": "2024-04-28T09:43:09.9757256+00:00",
      "PublishedOn": "2024-04-28T09:43:09.9757256+00:00",
      "Deleted": true,
      "Archived": true
    },
    {
      "Id": "sample string 1",
      "IntegrationProjectId": "sample string 2",
      "ClientId": "sample string 3",
      "Client": "sample string 4",
      "ClientNumber": "sample string 5",
      "Name": "sample string 6",
      "Number": "sample string 7",
      "Progress": "sample string 8",
      "Approved": true,
      "CONumber": 1,
      "CurrencyCode": "sample string 10",
      "Price": 11.0,
      "ImportedOn": "2024-04-28T09:43:09.9757256+00:00",
      "PublishedOn": "2024-04-28T09:43:09.9757256+00:00",
      "Deleted": true,
      "Archived": true
    }
  ],
  "TotalCount": 1
}

application/xml, text/xml

Sample:
<ProjectsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTools.SICloudAPI.DataObjects">
  <Projects>
    <ProjectInfo>
      <Approved>true</Approved>
      <Archived>true</Archived>
      <CONumber>1</CONumber>
      <Client>sample string 4</Client>
      <ClientId>sample string 3</ClientId>
      <ClientNumber>sample string 5</ClientNumber>
      <CurrencyCode>sample string 10</CurrencyCode>
      <Deleted>true</Deleted>
      <Id>sample string 1</Id>
      <ImportedOn>2024-04-28T09:43:09.9757256+00:00</ImportedOn>
      <IntegrationProjectId>sample string 2</IntegrationProjectId>
      <Name>sample string 6</Name>
      <Number>sample string 7</Number>
      <Price>11</Price>
      <Progress>sample string 8</Progress>
      <PublishedOn>2024-04-28T09:43:09.9757256+00:00</PublishedOn>
    </ProjectInfo>
    <ProjectInfo>
      <Approved>true</Approved>
      <Archived>true</Archived>
      <CONumber>1</CONumber>
      <Client>sample string 4</Client>
      <ClientId>sample string 3</ClientId>
      <ClientNumber>sample string 5</ClientNumber>
      <CurrencyCode>sample string 10</CurrencyCode>
      <Deleted>true</Deleted>
      <Id>sample string 1</Id>
      <ImportedOn>2024-04-28T09:43:09.9757256+00:00</ImportedOn>
      <IntegrationProjectId>sample string 2</IntegrationProjectId>
      <Name>sample string 6</Name>
      <Number>sample string 7</Number>
      <Price>11</Price>
      <Progress>sample string 8</Progress>
      <PublishedOn>2024-04-28T09:43:09.9757256+00:00</PublishedOn>
    </ProjectInfo>
  </Projects>
  <TotalCount>1</TotalCount>
</ProjectsResult>